To be able to edit code and run cells, you need to run the notebook yourself. Where would you like to run the notebook?

This notebook takes about 4 minutes to run.

In the cloud (experimental)

Binder is a free, open source service that runs scientific notebooks in the cloud! It will take a while, usually 2-7 minutes to get a session.

On your computer

(Recommended if you want to store your changes.)

  1. Copy the notebook URL:
  2. Run Pluto

    (Also see: How to install Julia and Pluto)

  3. Paste URL in the Open box

Frontmatter

If you are publishing this notebook on the web, you can set the parameters below to provide HTML metadata. This is useful for search engines and social media.

Author 1
8×6 Matrix{Float64}:
 0.0188769  0.114189   0.490277   0.374496  0.0247996  0.44082
 0.265916   0.0497233  0.809168   0.307857  0.0630933  0.0762059
 0.735082   0.662211   0.0750717  0.973949  0.370047   0.903715
 0.626535   0.609608   0.976141   0.443066  0.770161   0.616573
 0.565962   0.135248   0.715464   0.838756  0.697419   0.186754
 0.64433    0.650992   0.771561   0.544595  0.474615   0.214476
 0.94217    0.68064    0.304683   0.19466   0.191573   0.040293
 0.278114   0.64145    0.445902   0.806693  0.649845   0.66748
👀 Reading hidden code
A = rand(8,6)
16.7 μs

Example: matrix of scrubbers

Click and drag one of the numbers below to modify B.

👀 Reading hidden code
6.6 ms
0.00.10.50.40.00.40.30.00.80.30.10.10.70.70.11.00.40.90.60.61.00.40.80.60.60.10.70.80.70.20.60.70.80.50.50.20.90.70.30.20.20.00.30.60.40.80.60.7
👀 Reading hidden code
915 ms
missing
👀 Reading hidden code
9.7 μs

Example: select entries

Click and drag to select entries. Use Ctrl (Windows) or Cmd (Mac) to combine selections.

👀 Reading hidden code
324 μs
👀 Reading hidden code
119 ms
8×6 Matrix{Bool}:
 0  0  0  0  0  0
 0  0  0  0  0  0
 0  0  0  0  0  0
 0  0  0  0  0  0
 0  0  0  0  0  0
 0  0  0  0  0  0
 0  0  0  0  0  0
 0  0  0  0  0  0
which_entries1
👀 Reading hidden code
9.5 μs

Example: select entries with multiplier

Click and drag to select entries. Use Ctrl (Windows) or Cmd (Mac) to combine selections.

👀 Reading hidden code
247 μs
@bind which_entries2 SelectEntries(A)
👀 Reading hidden code
641 μs
1.0
👀 Reading hidden code
200 ms
8×6 Matrix{Float64}:
 0.0188769  0.114189   0.490277   0.374496  0.0247996  0.44082
 0.265916   0.0497233  0.809168   0.307857  0.0630933  0.0762059
 0.735082   0.662211   0.0750717  0.973949  0.370047   0.903715
 0.626535   0.609608   0.976141   0.443066  0.770161   0.616573
 0.565962   0.135248   0.715464   0.838756  0.697419   0.186754
 0.64433    0.650992   0.771561   0.544595  0.474615   0.214476
 0.94217    0.68064    0.304683   0.19466   0.191573   0.040293
 0.278114   0.64145    0.445902   0.806693  0.649845   0.66748
👀 Reading hidden code
45.3 ms

Example: show_matrix

👀 Reading hidden code
180 μs
show_matrix(A)
👀 Reading hidden code
19.4 μs

As a second argument, you can pass a Matrix{Bool} of elements that should be shown in red.

👀 Reading hidden code
216 μs
show_matrix(A, A .> .9)
👀 Reading hidden code
329 ms
show_matrix(A, (A .> .9) .| (A .< .1))
👀 Reading hidden code
220 ms
👀 Reading hidden code
111 μs

Appendix

To use this widgets in another notebook, copy all cells in this appendix to a new notebook.

👀 Reading hidden code
253 μs
using PlutoUI
👀 Reading hidden code
436 ms
import HypertextLiteral: @htl
👀 Reading hidden code
172 μs

Select entries

👀 Reading hidden code
8.0 ms
SelectEntries
👀 Reading hidden code
455 ms
unwrap (generic function with 1 method)
👀 Reading hidden code
612 μs
@bind dope SelectEntries(A99)
👀 Reading hidden code
641 μs
4×3 Matrix{Bool}:
 0  0  0
 0  0  0
 0  0  0
 0  0  0
dope
👀 Reading hidden code
8.3 μs
bounding_box (generic function with 1 method)
👀 Reading hidden code
1.1 ms
3×2 Matrix{Bool}:
 1  1
 1  1
 1  1
👀 Reading hidden code
43.6 μs
👀 Reading hidden code
10.1 μs
b88 = @bind omg SelectEntries(default=hello)
👀 Reading hidden code
21.0 ms
3×2 Matrix{Bool}:
 1  1
 1  1
 1  0
👀 Reading hidden code
36.8 ms
👀 Reading hidden code
6.1 ms
rows (generic function with 1 method)
👀 Reading hidden code
898 μs

scrub_matrix

👀 Reading hidden code
14.2 ms
scrub_matrix (generic function with 1 method)
function scrub_matrix(A::Matrix{<:Real}; kwargs...)
h = PlutoUI.combine() do Child
@htl("""
<div style=$(Dict(
"display" => "inline-grid",
"grid-template-columns" => "repeat($(size(A,2)), auto)",
))>$(
map(eachindex(A')) do I
init = A'[I]
Child(Scrubbable(default_range(init); default=init, kwargs...))
end
)</div>
""")
end

transformed_value(h) do input
unwrap(A, collect(input))
end
end
👀 Reading hidden code
3.6 ms
default_range (generic function with 1 method)
function default_range(x::Integer)
if x == 0
-10:10
elseif 0 < x <= 10
0:10
elseif -10 <= x < 0
-10:0
else
sort(round.([Int64], (0.0:0.1:2.0) .* x))
end
end
👀 Reading hidden code
927 μs
default_range (generic function with 2 methods)
function default_range(x::Any)
[-1,0,1]
end
👀 Reading hidden code
380 μs
default_range (generic function with 3 methods)
function default_range(x::Real) # not an integer
if x == 0
-1.0 : 0.1 : 1.0
elseif 0 < x < 1
between_zero_and_x = LinRange(0.0, x, 10)
between_x_and_one = LinRange(x, 1.0, 10)
[between_zero_and_x..., between_x_and_one[2:end]...]
else
sort(x .* up_or_down_one_order_of_magnitude)
end
end
👀 Reading hidden code
934 μs
👀 Reading hidden code
65.2 ms
4×3 Matrix{Float64}:
 -0.712352   0.0755704  -1.59489
  1.82219   -0.692118    0.694966
  0.405784  -0.273298    1.8234
 -0.942239  -1.0445     -0.129699
A99 = randn(4,3)
👀 Reading hidden code
16.1 μs
−0.70.1−1.61.8−0.70.70.4−0.31.8−0.9−1.0−0.1
b2 = @bind result scrub_matrix(A99)
👀 Reading hidden code
134 ms
−0.70.1−1.61.8−0.70.70.4−0.31.8−0.9−1.0−0.1
b2
👀 Reading hidden code
8.9 μs
missing
result
👀 Reading hidden code
9.6 μs

Transform superwidget

👀 Reading hidden code
182 μs
import AbstractPlutoDingetjes: AbstractPlutoDingetjes, Bonds
👀 Reading hidden code
181 μs
transformed_value
transformed_value(transform::Function, widget::Any; [initial_value::Function])

Create a new widget that wraps around an existing one, with a value transformation.

This function creates a so-called high-level widget: it returns your existing widget, but with additional functionality. You can use it in your package

Example

A simple example to get the point accross:

function RepeatedTextSlider(text::String)
	transform = input -> repeat(text, input)
	new_widget = transformed_value(transform, PlutoUI.Slider(1:10))
	return new_widget
end

@bind greeting RepeatedTextSlider("hello")

# moving the slider to the right...

greeting == "hellohellohello"

screenshot of the above code in action


This function is very useful in combination with PlutoUI.combine. Let's enhance our previous example by adding a text box where the repeated text can be entered. If you have not used PlutoUI.combine yet, you should read about that first.

function RepeatedTextSlider()
	# Note that the input to `transform` is now a Tuple!
	# (This is the output of `PlutoUI.combine`)
	transform = input -> repeat(input[1], input[2])

	old_widget = PlutoUI.combine() do Child
		md""" $(Child(PlutoUI.TextField())) $(Child(PlutoUI.Slider(1:10)))"""
	end
	new_widget = transformed_value(transform, old_widget)
	return new_widget
end

screenshot of the above code in action

👀 Reading hidden code
1.9 ms
❌ You need to update Pluto to use this PlutoUI element.
👀 Reading hidden code
2.2 ms
TransformedWidget
👀 Reading hidden code
8.2 ms

show_matrix

👀 Reading hidden code
181 μs
using Images
👀 Reading hidden code
70.6 s
show_matrix (generic function with 2 methods)
function show_matrix(A::Matrix, red::Union{BitMatrix,Matrix{Bool}}=zeros(Bool, size(A)))
base = RGB.(Gray.(A))

base[red] .= RGB(1.0, 0.1, 0.1)

# some tricks to show the pixels more clearly:
s = max(size(A)...)
if s >= 20
min_size = 1200
factor = min(5,min_size ÷ s)
kron(base, ones(factor, factor))
else
base
end
end
👀 Reading hidden code
1.4 ms
👀 Reading hidden code
267 ms